HermiteSurface.Create
Description:
Create a Hermite surface using a net of 3D points as input. Specify periodicity in U and V direction.
Create a Hermite surface using a net of 3D points as input. Specify periodicity in U and V direction.
Remarks:
Points form a net of nU * nV (less one each if periodic) 3D points.
Points form a net of nU * nV (less one each if periodic) 3D points.
Overloads (2):
public static HermiteSurface Create(
int nU,
int nV,
IList<XYZ> points,
bool periodicU,
bool periodicV
)
-
Int32nUNumber of points in U direction.
-
Int32nVNumber of points in V direction.
-
IList<XYZ>pointsArray of points. Must contain nU*nV points.
-
BooleanperiodicUPeriodicity in U direction
-
BooleanperiodicVPeriodicity in V direction
-
A non-optional argument was null
-
Thrown when the input arguments are inconsistent. The most common case is incorrect number of items in one of the lists.